Android Debugging
[実行、デバッグ構成の作成と編集 | Android Developers https://developer.android.com/studio/run/rundebugconfig][Android Logging][[Custom DEBUG LOG Configuration]]という設定が [Android Studio]にある。
^(?!.*(bar|foo|memtrack).*$
否定先読みを使う grep -v
(invert match)を使えばよい Log.d(tag, message)
で print debug? adb logcat > logcat.txt
#ADB_Shell adb logcat | tee <filename>
$ adb kill-server
$ adb start-server